Skip to main content

Variable scope

Variable

A variable is simply a named unit of data that is assigned a value. Its value can change, but its name will stay the same.

As detailed on each of the Function pages, many functions will create a variable at the end of their execution. For example, the "Get data item" stores the data it retrieves from the database in a variable. You may need this variable as an argument in later function calls. Variables created in any action reside in the "Variable scope". This scope is unique per action execution, meaning it cannot be shared by actions or action executions.

You can, however share data between actions by using the Database or Parameters.

These variables can then be used in other function calls. They must be provided in the Arguments tab of an function instance. Select the "Scope" input selection & click the input field to start searching through all available variables on the variable scope.

Variable scope

You can only see variables that are available for you to use in this argument of this certain Function instance. There are 2 parameters taken into account here:

  • The fact that the variable is available either by being a default variable or by being created on the path from the "Start" block to the Function instance you are editing.
  • If the variables type matches the type of the argument that you are editing. Types can match exactly or if there is a possibility to convert from one type to another for example: Number -> Text.

You can view the entire list of available parameters by clicking the "scope" icon next to the input field:

All scope variables

On this screen you are able to see why some variables cannot be used for the argument that you are editing.

Complex values on the scope

Complex values such as "Data" that are placed on the scope allow for deeper access through the scope.

For example. You fetch a piece of data from the built in database that contains the first name & last name of a person. You will have access to the fields of this data by using the scope in the form of:

[DATA NAME].[ATTRIBUTE NAME]

In our case this could by

person.firstName

Complex values

Default variables in the scope

By default, the scope contains the following variables:

VariableDescription
currentUser.userId: Current user idThe id of the current user.
currentUser.firstName: Current user firstnameThe first name of the current user.
currentUser.lastName: Current user lastNameThe last name of the current user.
currentUser.anonymous"true" when the current user is not authenticated, "false" if the user is authenticated
currentUser.emailThe email of the current user
currentUser.rightsThe rights of the current user
currentUrl.pathThe relative path of the current page
currentUrl.domainThe domain name of the current page
browser.languageThe language as set in the browser.
browser.clipboardThe content of the clipboard
browser.geolocationThe geolocation of the user
browser.onlineWhether an internet connection is available or not.
browser.userAgentThe user agent string of the current browser.